home *** CD-ROM | disk | FTP | other *** search
/ Amiga Plus 2000 #1 / Amiga Plus CD - 2000 - No. 1.iso / Tools / Dev / Meshwriter / real.h < prev    next >
Encoding:
C/C++ Source or Header  |  1999-12-03  |  1.7 KB  |  52 lines

  1. /*
  2. **      $VER: real.h 1.00 (13.03.1999)
  3. **
  4. **      Creation date : 13.03.1999
  5. **
  6. **      Description       :
  7. **         Standart saver module for meshwriter.library.
  8. **         Saves the mesh as Real 3D object file.
  9. **
  10. **
  11. **      Written by Stephan Bielmann
  12. **
  13. */
  14.  
  15. #ifndef INCLUDE_REAL_H
  16. #define INCLUDE_REAL_H
  17.  
  18. /*************************** Includes *******************************/
  19.  
  20. /*
  21. ** Amiga includes
  22. */
  23. #include <dos/dos.h>
  24.  
  25. /*
  26. ** Project includes
  27. */
  28. #include "meshwriter_private.h"
  29.  
  30. /*************************** Functions ******************************/
  31.  
  32. /********************************************************************\
  33. *                                                                    *
  34. * Name         : write3REAL                                          *
  35. *                                                                    *
  36. * Description  : Writes a standart Real 3D V2.20 binary file.        *
  37. *                                                                    *
  38. * Arguments    : realfile IN : An already opened file stream.        *
  39. *                mesh     IN : Pointer to the mesh.                  *
  40. *                                                                    *
  41. * Return Value : RCNOERROR                                           *
  42. *                RCWRITEDATA                                         *
  43. *                                                                    *
  44. * Comment      :                                                     *
  45. *                                                                    *
  46. \********************************************************************/
  47. extern ULONG write3REAL(BPTR realfile, TOCLMesh *mesh);
  48.  
  49. #endif
  50.  
  51. /************************* End of file ******************************/
  52.